home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19981211-19990422 / 000429_news@watsun.cc.columbia.edu _Sat Apr 3 10:52:34 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@watsun.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id KAA26752
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Sat, 3 Apr 1999 10:52:34 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id KAA08288
  7.     for kermit.misc@watsun.cc.columbia.edu; Sat, 3 Apr 1999 10:48:45 -0500 (EST)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. Message-ID: <71qj3m$aut$1@apakabar.cc.columbia.edu>
  10. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  11. Subject: Re: I need your help... hexify me!
  12. Organization: Columbia University
  13. Date: Sat, 03 Apr 1999 15:45:02 GMT
  14. To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. In article <uvqp17.pl3.ln@rlyeh.srd.it>,  <cthulhu@rlyeh.srd.it> wrote:
  17. : Is there someone that would be so glad to hexify a kermit32.exe (VMS 5.3,
  18. : MicroVAX 3400) and send it to me via email?
  19. You don't need anyone to do this.  You can find it, prehexified, at:
  20.  
  21.   ftp://kermit.columbia.edu/kermit/b/vmsmit.hex
  22.  
  23. Transfer in text mode.
  24.  
  25. : Just to let you know, the working MACRO source of hexify/dehexify I've found
  26. : say, on top:
  27. : ---
  28. :     .TITLE  HEXIFY
  29. :     .SBTTL  Stuart Hecht and Eric McQueen
  30. :     .LIBRARY /SYS$LIBRARY:STARLET/
  31. :     .LIBRARY /SYS$LIBRARY:LIB/
  32. :     .IDENT  /1.1.00/
  33. : ---
  34. : You know, I'm start thinking that each version of hexify avaliable on the
  35. : net has a different output format.
  36. VMSHEX format (as produced by this program) is not a simple conversion to
  37. hex digits of the file contents.  It is a way to encode *any* VMS file
  38. at all in such a way that dehexifying it with the companion dehexifier
  39. program will restore it to its original form, RMS attributes and all.  So
  40. you can use these programs to hexify not only featureless executables, but
  41. also BACKUP savesets, indexed files, you name it.
  42.  
  43. This is similar to C-Kermit's Labeled File format and to VMS ZIP with its
  44. -V option or whatever it is, except the result is (a) printable, and (b)
  45. has short (< 80 char) records, and so can pass through the most restrictive
  46. transports, e.g. BITNET mail.
  47.  
  48. The VMSHEX and VMSDEH programs are at:
  49.  
  50.   ftp://kermit.columbia.edu/kermit/b/vmshex.*
  51.   ftp://kermit.columbia.edu/kermit/b/vmsdeh.*
  52.  
  53. Transfer in text mode.  Then:
  54.  
  55.   macro vmsdeh
  56.   link vmsdeh
  57.   run vmsdeh
  58.  
  59. and at the prompt, type "vmsmit.hex" to make it dehexify the Kermit-32
  60. executable.  Then use Kermit-32 to transfer VMS C-Kermit into your system
  61. and you're all set.
  62.  
  63. - Frank
  64.